type net/http.conn

20 uses

	net/http (current package)
		server.go#L254: type conn struct {
		server.go#L310: func (c *conn) hijacked() bool {
		server.go#L317: func (c *conn) hijackLocked() (rwc net.Conn, buf *bufio.ReadWriter, err error) {
		server.go#L427: 	conn             *conn
		server.go#L634: func (s *Server) newConn(rwc net.Conn) *conn {
		server.go#L635: 	c := &conn{
		server.go#L663: 	conn    *conn      // conn is nil after handler exit.
		server.go#L976: func (c *conn) readRequest(ctx context.Context) (w *response, err error) {
		server.go#L1736: func (c *conn) finalFlush() {
		server.go#L1754: func (c *conn) close() {
		server.go#L1784: func (c *conn) closeWriteAndWait() {
		server.go#L1829: func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
		server.go#L1850: func (c *conn) getState() (state ConnState, unixSec int64) {
		server.go#L1897: func (c *conn) serve(ctx context.Context) {
		server.go#L2158: func (c *conn) maybeServeUnencryptedHTTP2(ctx context.Context) bool {
		server.go#L2163: 	hasPreface := func(c *conn, preface []byte) bool {
		server.go#L3085: 	activeConn map[*conn]struct{}
		server.go#L3594: func (s *Server) trackConn(c *conn, add bool) {
		server.go#L3598: 		s.activeConn = make(map[*conn]struct{})
		server.go#L4033: 	c *conn